home *** CD-ROM | disk | FTP | other *** search
/ The Virtual Portfolio - N…a Showcase - Book 5 1995 / VIRTUAL [md5 EC7DB5CC033E38E511F666CE80BCE509].ISO / mac / Main / VP.mac / 00051.ls < prev    next >
Encoding:
Text File  |  1995-07-18  |  497 b   |  25 lines

  1. on enterFrame
  2.   set the visible of sprite 24 to 0
  3.   set the visible of sprite 25 to 0
  4.   set the visible of sprite 26 to 0
  5.   set the visible of sprite 27 to 0
  6.   if rollOver(24) then
  7.     set the visible of sprite 24 to 1
  8.   end if
  9.   if rollOver(25) then
  10.     set the visible of sprite 25 to 1
  11.   end if
  12.   if rollOver(26) then
  13.     set the visible of sprite 26 to 1
  14.   end if
  15.   if rollOver(27) then
  16.     set the visible of sprite 27 to 1
  17.   else
  18.     nothing()
  19.   end if
  20. end
  21.  
  22. on exitFrame
  23.   go(marker(0))
  24. end
  25.